home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / EPRINTF.C < prev    next >
C/C++ Source or Header  |  1992-03-02  |  219b  |  11 lines

  1. #include <stdio.h>
  2. void
  3. __eprintf (string, expression, line, filename)
  4.      char *string;
  5.      char *expression;
  6.      int line;
  7.      char *filename;
  8. {
  9.   fprintf (stderr, string, expression, line, filename);
  10. }
  11.